home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 4.2 KB | 81 lines | [TEXT/ScoM] |
- USING RNA CODE
-
- >hello peter and those who like to mess with rna! i have started to look
- >at protein data found on some medical servers, and also the rna tester
- >in scom. could you please explain briefly the idea behind your function
- >"unlock gene" in the tester, which converts the blocks of letter data
- >into (a b c ) etc... is the function using a common decoding scheme
- >which has to be applied to the ATTCCQRTT ACTTRTTCA to get proper data or
- >do you have a special reason to do so?
-
- Open-gene lets you paste a standard rna representation, and it filters
- out the numbers and also explodes the grouped rna strings into a list
- of symbol. You'll not the cond block here, it converts t to symbol b
- and g to symbol d. This way the rna is represented as symbols
- a b c d, and not a t c g. Why? It is easier to use symbols which map
- to 4 first notes of the tonality than jump to different octaves.
-
- If you want to have a t c g list as output then remove the cond part.
- Use a neuron to convert a t c g list to symbols of your preference.
- Check def-neuron documents. If you need more help on setting the
- neuron ask me.
-
- (defun open-gene (l)
- (prog (out a elem)
- loop
- (cond ((null l) (return (reversewoc out))))
- (unless (integerp (car l))
- (setq a (explodec (car l)))
- (while (not (null a))
- (setq elem (car a))
- (cond ((equal elem 't) ; remove if direct
- (setq elem 'b)) ; a t c g list is
- ((equal elem 'g) ; required
- (setq elem 'd))) ;
- (setq out (xcons out elem))
- (setq a (cdr a))))
- (setq l (cdr l))
- (go loop)))
-
- (setq pep (open-gene
- '( 1 gaattccaga aaagaggtgg agaggggggg aataagaaag agagagaagg aaaggagaga
- 61 aggcaggaag aaggcaaggg acgagacaac catgctgtgc tgtatgagaa gaaccaaaca
- 121 ggttgaaaaa aatgatgacg accaaaagat tgaacaagat ggtatcaaac cagaagataa
- 181 agctcataag gccgcaacca aaattcaggc tagcttccgt ggacacataa caaggaaaaa
- 241 gctcaaagga gagaagaagg atgatgtcca agctgctgag gctgaagcta ataagaagga
- 301 tgaagcccct gttgccgatg gggtggagaa gaagggagaa ggcaccacta ctgccgaagc
- 361 agccccagcc actggctcca agcctgatga gcccggcaaa gcaggagaaa ctccttccga
- 421 ggagaagaag ggggagggtg atgctgccac agagcaggca gccccccagg ctcctgcatc
- 481 ctcagaggag aaggccggct cagctgagac agaaagtgcc actaaagctt ccactgataa
- 541 ctcgccgtcc tccaaggctg aagatgcccc agccaaggag gagcctaaac aagccgatgt
- 601 gcctgctgct gtcactgctg ctgctgccac cacccctgcc gcagaggatg ctgctgccaa
- 661 ggcaacagcc cagcctccaa cggagactgg ggagagcagc caagctgaag agaacataga
- 721 agctgtagat gaaaccaaac ctaaggaaag tgcccggcag gacgagggta aagaagagga
- 781 acctgaggct gaccaagaac atgcctgaac tctaagaaat ggctttccac atccccaccc
- 841 tcccctctcc tgagcctgtc tctccctacc ctcttctcag ctccactctg aagtcccttc
- 901 ctgtcctgct cacgtctgtg agtctgtcct ttcccaccca ctagccctct ttctctctgt
- 961 gtggcaaaca tttaaaaaaa aaaaaaaaaa gcaggaaaga tcccaagtca aacagtgtgg
- 1021 cttaaacatt ttttgtttct tggtgttgtt atggcaagtt tttggtaatg atgattcaat
- 1081 cattttggga aattcttgca ctgtatccaa gttatttgat ctggtgcgtg tggccctgtg
- 1141 ggagtccact ttcctctctc tctctctctc tgttccaagt gtgtgtgcaa tgttccgttc
- 1201 atctgaggag tccaaaatat tgagtgaatt c
- )))
-
- So, when you execute the above then pep will contain a list consisting
- of symbols a b c d, which you can then directly map to tonalities.
-
- RNA is a great source of fluctuating minimalistic lines. I have had a
- great inspiration of AIDS RNA. Brain tries to build a model and understand
- everything it hears. This case you are listening data which design
- principles come from a microworld of 4-5 dimensions (somesuch..).
-
- Mind will recur searching solution until exhaustion. Returning from the
- recursion back reality level is fruitful. After unsoluble search it suddenly
- feels like every other thing is soluble. When you play RNA in steady
- tempo 6-10 events per second you can induce trance.
-
- Hint. B5, B6 and B12 vitamins increase memory upto 40 percent. Intelligence
- can be increased also by just digesting more information. Import new
- information to your brain using SCOM generators. Infinity series triggered
- my mind into a new path...very interesting these aspects of music..
-